Aliasing with Windows 2008 Server 64 Bit

If you want to use aliasing on a 64-bit server running Windows 2008, follow these steps.

1. Install classic ASP onto the server. It is not installed by default. See Also: http://technet.microsoft.com/en-us/library/cc753918.aspx

2. Open your site root/web.config file.

3. Find this tag:

<add name="ek*" path="*" verb="GET,HEAD,POST" type="Ektron.ASM.EkHttpDavHandler.EkDavHttpHandlerFactory" modules="ManagedPipelineHandler" scriptProcessor="" resourceType="Unspecified" requireAccess="Script" preCondition="" />

4. Add the following ASP handler above the ek handler shown above.

<add name="ASPClassic" path="*.asp" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%windir%\system32\inetsrv\asp.dll" resourceType="File" />

Previous TopicNext Topic|